public class U3_MyPrint {

    public static void main(String[] args) {
        myPrint("This line is not indented", false);
        myPrint("This line is indented five spaces", true);
    }

    // add myPrint method here

}